home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / fglqbx10.zip / 11-03.BAS < prev    next >
BASIC Source File  |  1991-06-07  |  501b  |  31 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. NewMode = FGbestmode(320,200,1)
  6. IF NewMode < 0 OR NewMode = 12 THEN
  7.    PRINT "This program requires a 320 x 200 color graphics mode."
  8.    STOP
  9. END IF
  10. OldMode = FGgetmode
  11. FGsetmode NewMode
  12.  
  13. FGsetcolor 15
  14. FGrect 0, 319, 0, 199
  15. FGsetcolor 10
  16. FGtext "line one", 8
  17. FGlocate 1, 0
  18. FGtext "line two", 8
  19. FGwaitkey
  20.  
  21. FGsetcolor 15
  22. FGscroll 0, 63, 8, 15, 4, 1
  23. FGwaitkey
  24. FGscroll 0, 63, 12, 19, -4, 1
  25. FGwaitkey
  26.  
  27. FGsetmode OldMode
  28. FGreset
  29.  
  30. END
  31.